home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / CONFIG.MIN < prev    next >
Text File  |  1989-12-28  |  1KB  |  30 lines

  1. /* Software options */
  2. #define IP        1    /* Include TCP/IP code */
  3. #define SERVERS        1    /* Include TCP servers */
  4. #define FTPC        1    /* Include FTP client */
  5. #define SMTPC        1    /* Include SMTP client */
  6. #define TRACE        1    /* Include packet tracing code */
  7. #define MHEARD        1    /* Include station monitoring code */
  8. #define NSESSIONS    10    /* Number of interactive clients */
  9.  
  10. /* Hardware configuration */
  11. #define SLIP        1    /* Serial Line IP subnet code */
  12. #define KISS        1    /* KISS TNC code */
  13. #undef    HAPN        1    /* Hamilton Area Packet Network driver code */
  14. #undef    EAGLE        1    /* Eagle card driver */
  15. #undef    PC100        1    /* PAC-COM PC-100 driver code */
  16. #define SCC        1    /* Z8530 SCC driver code */
  17. #undef    APPLETALK    1    /* Appletalk interface (Macintosh) */
  18.  
  19. #if (defined(NETROM)||defined(KISS)||defined(HAPN)||defined(EAGLE)||defined(PC100)||defined(SCC))
  20. # undef     AX25
  21. # define AX25        1    /* AX.25 subnet code */
  22. #endif
  23.  
  24. /* KISS TNC, SLIP, NRS or PACKET implies ASY */
  25. #if (defined(KISS) || defined(PACKET) || defined(NRS) || defined(SLIP))
  26. # undef     ASY
  27. # define ASY        1    /* Asynch driver code */
  28. #endif
  29.  
  30.